Detecting Faces
What two methods should you use with the FaceDetector.Builder to turn on Classifications and improve performance by disabling tracking (which maintains an ID between consecutive frames if the same face exists in both of them?)
setTrackingEnabled(true)
setLandmarkType(FaceDetector.ALL_LANDMARKS)
setClassificationType(FaceDetector.ALL_CLASSIFICATIONS)
setTrackingEnabled(false)
Next Concept